9d40c350b7d8de0e0d9321266c7c6455459ae76e,wicket/src/java/wicket/markup/html/form/AbstractChoice.java,AbstractChoice,appendOptionHtml,#StringBuffer#Object#number#,320

Before Change


	 */
	protected void appendOptionHtml(StringBuffer buffer, Object choice, int index)
	{
		final String displayValue = renderer.getDisplayValue(choice);
		buffer.append("\n<option ");
		if (isSelected(choice, index))
		{

After Change


	 */
	protected void appendOptionHtml(StringBuffer buffer, Object choice, int index)
	{
		final String displayValue = (String)getConverter().convert(renderer.getDisplayValue(choice), String.class);
		buffer.append("\n<option ");
		if (isSelected(choice, index))
		{